home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / firmware-realtek.postinst < prev    next >
Encoding:
Text File  |  2013-01-05  |  299 b   |  22 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure)
  7.         if [ -x /usr/sbin/update-initramfs -a -e /etc/initramfs-tools/initramfs.conf ] ; then
  8.             update-initramfs -u
  9.         fi
  10.     ;;
  11.  
  12.     abort-upgrade|abort-remove|abort-deconfigure)
  13.     ;;
  14.  
  15.     *)
  16.         echo "postinst called with unknown argument \`$1'" 1>&2
  17.         exit 1
  18.     ;;
  19. esac
  20.  
  21.  
  22.